Save Time and Money

Main Page

You went to the cheese, you remember you need a cucumber, you go back to the vegetables, hop it says Italian cheddar, chicken, milky, you go back freaking out.... no more...

About

We at "Save Money and Time" company think about the customer who hits his feet in the stores and we have built a product for you that can save you resources and focus you on a targeted purchase.

Our Product

Evidence studies

How to be a much more productive customer?

Studies conducted by renowned professors from Kolondi University. They discovered that people who made purchases from a list that was not ordered wasted 28% more time on average than customers with an ordered list!!!! and about 15% more money!!! At least 90%!!! Of the people who bought without a neat and orderly list, they reported at least one product that was on the list and was missed..... No more!! With "Save time and money" your shopping life is going to change.

Contact Us

Yitzchak Barzel: phone number +972 52714407 email yitzchakbarzel@gmail.com

Behind the Scenes

A huge thanks to the GPT chat

View Product Code

            
                """To save time shopping, on running back and forth
                throughout the store, you can send us your shopping
                list and we will arrange them according to the order
                of the products in the store."""
                # Define a list of products
                List_of_products = [ "milk", "bread", "eggs", "cheese",
                "butter", "yogurt", "apples", "bananas", "oranges", "grapes",
                "strawberries", "blueberries", "carrots", "potatoes", "onions",
                "garlic", "tomatoes", "cucumbers", "lettuce", "spinach",
                "broccoli", "cauliflower", "chicken", "beef", "pork", "fish",
                "shrimp", "rice", "pasta", "beans", "lentils", "cereal", "oatmeal",
                "flour", "sugar", "salt", "pepper", "olive oil", "vegetable oil",
                "vinegar", "honey", "peanut butter", "jam", "chocolate", "cookies",
                "chips", "soda", "juice", "water", "coffee" ]

                # A function that receives the list of products 
                # from the user and splits it into a list
                def get_user_products():
                    user_input = input("Please enter your shopping list, (product with two words such as: \"soy milk\" write soy-milk)")
                    user_products = [product.strip() for product in user_input.replace(',', ' ').split()]
                    return user_products

                # Main code
                user_products = get_user_products()

                products_order = List_of_products  
                # Sort list
                sorted_products = sorted(user_products, key=lambda product: List_of_products.index(product) if product in products_order else float('inf'))
                    
                # printing the list
                print("The shopping list that will save you time is:")
                for product in sorted_products:
                    print(product)